home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / asmsrc / thesource-7.lha / Source / Articles / Stereoscopic / SegaGlasses.lha / Sega3DGlasses / SegaGlasses.c < prev   
C/C++ Source or Header  |  1994-05-27  |  5KB  |  193 lines

  1. /*
  2. VGA 320 * 400 * 256 * 2 frames routines.
  3.  
  4. Written by: F van der Hulst, 20/2/91
  5.  
  6. These routines display pixels in 320*400 mode by modifying the VGA
  7. registers, as outlined in Programmer's Journal V7.1 (Jan/Feb '89)
  8. article, pages 18-30, by Michael Abrash.
  9.  
  10. The advantage of 320 * 400, is that it gives two separate video pages,
  11. which can be displayed on the screen independently. These can contain
  12. two views of a scene, taken from slightly different viewpoints. These
  13. are displayed alternately on the screen, in sync with a pair of
  14. "chopper glasses", to give a 3D effect.
  15. */
  16.  
  17. #include <conio.h>
  18.  
  19. typedef unsigned char DacPalette[256][3];
  20.  
  21. /* Setvgapalette sets the entire 256 color palette     */
  22. /* PalBuf contains RGB values for all 256 colors       */
  23. /* R,G,B values range from 0 to 63                         */
  24. /* Taken from SVGA256.H, by Jordan Hargraphix Software */
  25.  
  26. void setvgapalette(DacPalette *PalBuf)
  27. {
  28.     struct REGPACK reg;
  29.  
  30.     reg.r_ax = 0x1012;
  31.     reg.r_bx = 0;
  32.     reg.r_cx = 256;
  33.     reg.r_es = FP_SEG(PalBuf);
  34.     reg.r_dx = FP_OFF(PalBuf);
  35.     intr(0x10,®);
  36. }
  37.  
  38.  
  39. unsigned int act_page = 0; /* Current page being written to */
  40.  
  41.  
  42. #define VGA_SEGMENT        0xa000
  43. #define SC_INDEX           0x3c4
  44. #define GC_INDEX           0x3ce
  45. #define CRTC_INDEX         0x3d4
  46. #define DISPIO             0x3DA
  47.  
  48. #define MAP_MASK           2
  49. #define MEMORY_MODE        4
  50. #define GRAPHICS_MODE      5
  51. #define MISCELLANEOUS      6
  52. #define VRT_bit            8
  53. #define MAX_SCAN_LINE      9
  54. #define START_ADDRESS_HIGH 0x0c
  55. #define UNDERLINE          0x14
  56. #define MODE_CONTROL       0x17
  57.  
  58. void writepixel(int x, int y, unsigned char colour)
  59. {
  60.     long addr;
  61.  
  62.         addr = ((x >> 2) + 320/4 * y + act_page);
  63.         addr = ((addr & 0xffff0000l) << 4) + (addr & 0xffffL) + ((long) VGA_SEGMENT << 16);
  64.         outport(SC_INDEX, (0x100 << (x & 3)) | MAP_MASK);
  65.         *(char far*)addr = colour;
  66. }
  67.  
  68. void set320x400mode(void)
  69. {
  70.     struct REGPACK regs;
  71.     unsigned char x;
  72.  
  73.     regs.r_ax = 0x13;                               /* Set 320*200*256 graphics mode via BIOS */
  74.     intr(0x10, ®s);
  75.  
  76.     /* Change CPU addressing of video memory to linear (not odd/even, chain, or
  77.        chain 4), to allow access to all 256K of display memory. Each byte will now
  78.        control one pixel, with 4 adjacent pixels at any given address, one pixel
  79.        per plane. */
  80.  
  81.     outportb(SC_INDEX, MEMORY_MODE);
  82.     x = inportb(SC_INDEX+1);
  83.     x &= 0xf7;                                                              
  84.  
  85.     /* Turn off chain 4  */
  86.     x |= 4;                                                                 
  87.  
  88.     /* Turn off odd/even */
  89.     outportb(SC_INDEX+1, x);
  90.     outportb(GC_INDEX, GRAPHICS_MODE);
  91.     x = inportb(GC_INDEX+1);
  92.     x &= 0xef;                                                              
  93.  
  94.     /* Turn off odd/even */
  95.     outportb(GC_INDEX+1, x);
  96.     outportb(GC_INDEX, MISCELLANEOUS);
  97.     x = inportb(GC_INDEX+1);
  98.     x &= 0xfd;                                                              
  99.  
  100.     /* Turn off chain */
  101.     outportb(GC_INDEX+1, x);
  102.  
  103.     /* Now clear the whole screen, since the mode 13h set only clears 64K. Do this
  104.        before switching CRTC out of mode 13h, so that we don't see grabage on the
  105.        screen. */
  106.  
  107.     outport(SC_INDEX, 0x0f00 | MAP_MASK);                   /* Write to 4 planes at once */
  108.     setmem(MK_FP(VGA_SEGMENT, 0), 0xffff, 0);
  109.  
  110.     /* Change mode to 320*400 by not scanning each line twice. */
  111.     outportb(CRTC_INDEX, MAX_SCAN_LINE);
  112.     x = inportb(CRTC_INDEX+1);
  113.     x &= 0xe0;                                                              
  114.  
  115.     /* Set maximum scan line to 0 */
  116.     outportb(CRTC_INDEX+1, x);
  117.  
  118.     /* Change CRTC scanning from doubleword to byte mode, allowing the CRTC to
  119.        scan more than 64K */
  120.     outportb(CRTC_INDEX, UNDERLINE);
  121.     x = inportb(CRTC_INDEX+1);
  122.     x &= 0xbf;                                      /* Turn off doubleword */
  123.     outportb(CRTC_INDEX+1, x);
  124.     outportb(CRTC_INDEX, MODE_CONTROL);
  125.     x = inportb(CRTC_INDEX+1);
  126.     x |= 0x40;                                      /* Turn on the byte mode bit, so memory is linear */
  127.     outportb(CRTC_INDEX+1, x);
  128. }
  129.  
  130.  
  131. void end320x400mode(void)
  132. {
  133.     struct REGPACK regs;
  134.  
  135.     regs.r_ax = 3;                          /* Return to text mode */
  136.     intr(0x10, ®s);
  137. }
  138.  
  139.  
  140. /* Set visible page */
  141. void setvispage(int page)
  142. {
  143.     outport(CRTC_INDEX, (page << 15) | START_ADDRESS_HIGH);
  144. }
  145.  
  146.  
  147. /* Set active page (page being written to */
  148. void setactpage(int page)
  149. {
  150.     act_page = page ? 0x8000 : 0;
  151. }
  152.  
  153.  
  154. void WaitForVerticalRetrace(void)
  155. {
  156.     static char chopper = 1;
  157.  
  158.     while (inportb(DISPIO) & VRT_bit)
  159.         /* wait */ ;
  160.  
  161.     while ((inportb(DISPIO) & VRT_bit) == 0)
  162.         /* wait */ ;
  163.  
  164.     if ((chopper++ & 1)== 0)
  165.         outportb(0x3fc, 1);
  166.     else                                                                    
  167.         outportb(0x3fc, 3);
  168. }
  169.  
  170. void main(int argc, char *argv[])
  171. {
  172.     set320x400mode();
  173.  
  174.     /* Now fill the rgb_palette structure in memory with colour info */
  175.     setvgapalette(&rgb_palette);
  176.  
  177.     setactpage(0);
  178.  
  179.     /* Now call writepixel to put stuff on page 0 */
  180.     setactpage(1);
  181.  
  182.     /* Now call writepixel to put stuff on page 1 */
  183.     while (!kbhit())
  184.     {
  185.         WaitForVerticalRetrace();
  186.         setvispage(0);
  187.         WaitForVerticalRetrace();
  188.         setvispage(1);
  189.     }
  190.     getch();
  191.     end320x400mode();
  192. }
  193.